@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* font-family: 'Roboto Condensed', sans-serif; */
/* font-family: 'Poppins', sans-serif; */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


:root{
    --black : #333333;
    --dark-blue : #0756A5;
    --white : #fff;
    --poppins : 'Poppins', sans-serif;
    --roboto-condensed : 'Roboto Condensed', sans-serif;
}

html {
    scroll-behavior: smooth!important;
}

.raiser-section-heading{
    font-family: var(--roboto-condensed);
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

  /* <!-- ========== RAISER PAGE CSS STARTED========== --> */

/* <!-- ========== RAISER BANNER SECTION CSS ========== --> */
.raiser-hero-section{
    padding-top:127px;
}
.raiser-hero-section .raiser-hero-inner-section{
    background: url(../images/camino-banner-bg.webp);
    background-position: top center;
    background-size: cover;
}
.raiser-hero-section .content{
    padding: 110px 0 70px 0;
}
.raiser-hero-section .content h1{
    font-family: var(--roboto-condensed);
    font-size: 40px;
    line-height: 47px;
    font-weight: 700;
    color: #fff;
}
.raiser-hero-section .content h1 span{
    background: linear-gradient(90deg, #F67D20 0%, #FBC69C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-style: italic;
}
.raiser-hero-section .content p{
    font-family: var(--poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    margin: 23px 0 38px 0;
    padding-right: 15px;
}
.raiser-hero-section .content .zeidman-link{
    background: linear-gradient(90deg, #F67D20 0%, #FBC69C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
}
.raiser-hero-section .content .schedule-btn{
    display: block;
    text-align: center;
    padding: 13px 30px 12px 30px;
    background: #FF5500;
    border-radius: 130px;
    color: var(--dark-blue);
    max-width: 206px;
    font-family: var(--roboto-condensed);
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
}
.raiser-hero-section .content .schedule-btn:hover{
    transform: translateY(-8px);
    transition: all 0.3s ease-in-out;
}
.raiser-hero-section .image-wrapper img{
    max-width: 100%;
    height: auto;
}

/* <!-- ========== RAISER FEATURE SECTION CSS ========== --> */
.raiser-feature-section{
    padding: 95px 0;
}
.raiser-card-wrapper{
    margin-top: 65px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    column-gap: 90px;
    flex-wrap: wrap;
    row-gap: 70px;
}

.raiser-card{
    min-width: calc(33% - 65px);
    max-width: calc(33% - 65px);
}
.raiser-card img{
    width: auto;
    max-height: 100%;
    margin-bottom: 30px;
}
.raiser-card h4{
    font-family: var(--roboto-condensed);
    color: var(--black);
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 18px;
    text-wrap: nowrap;
}
.raiser-card p{
    font-family: var(--poppins);
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

/* <!-- ========== RAISER VIDEO SECTION CSS ========== --> */
.raiser-video-section{
    margin-bottom: 80px;
}


.raiser-video-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

.raiser-video-wrapper iframe{
    width: 80%;
    height: calc(110vh /(1280 / 720));
}

.raiser-video-wrapper iframe{
    width: 80%;
    height: 520px;
}




/***************************************************************/
/* <!-- ========== RESPONSIVE MEDIA QUERIES CSS ========== --> */
/***************************************************************/

/* <!-- === RESPONSIVE 1198px STARTS HERE === --> */

@media (max-width:1198px){
    .raiser-hero-section .content{
        padding: 70px 0 70px 0;
    }
    .raiser-card-wrapper{
        column-gap: 70px;
        row-gap: 55px;
    }
    .raiser-card{
        min-width: calc(33% - 50px);
        max-width: calc(33% - 50px);
    }
    .raiser-video-wrapper iframe{
        height: 435px;
    }

}


/* <!-- === RESPONSIVE 992PX STARTS HERE === --> */

@media (max-width:992px){
    .raiser-hero-section{
        padding-top: 107px;
    }
    .raiser-hero-section .content h1{
        font-size: 36px;
        line-height: 43px;
    }
    .raiser-hero-section .content p{
        font-size: 14px;
        line-height: 22px;
        margin: 15px 0 25px 0;
    }
    .raiser-hero-section .content .schedule-btn{
        font-size: 16px;
        padding: 12px 30px 10px 30px;
        max-width: 190px;
    }
    .raiser-feature-section{
        padding: 70px 0;
    }
    .raiser-card-wrapper{
        margin-top: 50px;
        column-gap: 40px;
        row-gap: 40px;
    }
    .raiser-card{
        min-width: calc(33% - 35px);
        max-width: calc(33% - 35px);
    }
    .raiser-card h4{
        font-size: 20px;
        line-height: 26px;
        text-wrap: wrap;
    }
    .raiser-card p{
        font-size: 15px;
    }
    .raiser-video-section {
        margin-bottom: 70px;
    }
    .raiser-video-wrapper iframe{
        width: 95%;
        height: 382px;
    }

}


/* <!-- === RESPONSIVE ONLY 768px STARTS HERE === --> */

@media (max-width:768px){
    .raiser-hero-section {
        padding-top: 0px;
    }
}


/* <!-- === RESPONSIVE ONLY 767px STARTS HERE === --> */

@media (max-width:767px){
    .raiser-hero-section .image-wrapper{
        margin-bottom: 40px;
    }
    .raiser-hero-section .content{
        text-align: center;
    }
    .raiser-hero-section .content .schedule-btn{
        margin: 0 auto;
    }
    .raiser-card h4{
        text-wrap: wrap;
    }
    .raiser-card {
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    .raiser-video-wrapper iframe{
        width: 100%;
        height: 299px;
    }
}


/* <!-- === RESPONSIVE ONLY 575px STARTS HERE === --> */

@media (max-width:575px){
    .raiser-hero-section .content{
        padding: 50px 0 50px 0;
    }
    .raiser-hero-section .content h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .raiser-feature-section{
        padding: 50px 0;
    }
    .raiser-section-heading{
        font-size: 26px;
        line-height: 30px;
    }
    .raiser-card-wrapper {
        margin-top: 30px;
        column-gap: 20px;
        row-gap: 30px;
    }
    .raiser-card{
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    .raiser-card h4 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 3px;
    }
    .raiser-card p {
        font-size: 12px;
        line-height: 21px;
    }
    .raiser-card img {
        width: auto;
        max-height: 40px;
        margin-bottom: 20px;
    }
    .raiser-video-section {
        margin-bottom: 50px;
    }
    
}

/* <!-- === RESPONSIVE ONLY 450PX STARTS HERE === --> */
@media (max-width:450px){
    .raiser-video-wrapper iframe{
        width: 100%;
        height: 246px;
    }
}
